June 08, 2020
.container {
display: grid;
overflow-x: scroll;
scroll-snap-type: x mandatory;
grid-auto-flow: column;
grid-template-columns: 85% 100%;
grid-template-rows: repeat(5, auto);
grid-row-gap: 20px;
grid-column-gap: 12px;
}
.item {
display: flex;
scroll-snap-align: center;
}
생각보다 어렵지 않은 작업이다. slick-carousel이나 js 코드로 구현할 필요 없이 css 코드 몇 줄이면 쉽게 구현할 수 있다.
참고 및 출처 scroll-snap-type(MDN)